小编Mad*_*pal的帖子

如何重启mysql服务器?

每次我重启MySQL服务器

bitnami@xxx:/$ sudo opt/bitnami/ctlscript.sh start server
Run Code Online (Sandbox Code Playgroud)

 

WWarning: World-writable config file '/opt/bitnami/mysql/my.cnf' is ignored
Warning: World-writable config file '/opt/bitnami/mysql/my.cnf' is ignored
121120 12:30:18 mysqld_safe Logging to '/opt/bitnami/mysql/data/mysqld.log'.
121120 12:30:18 mysqld_safe Starting mysqld daemon with databases from /opt/bitnami/mysql/data
121120 12:30:20 mysqld_safe mysqld from pid file /opt/bitnami/mysql/data/ip-10-136-14-170.pid ended
/opt/bitnami/mysql/scripts/ctl.sh : mysql  could not be started
Run Code Online (Sandbox Code Playgroud)

服务器响应以下错误:

(2002,"无法通过socket连接到本地MySQL服务器'/tmp/mysql.sock'(2)")

请告诉我我必须做些什么来解决这个问题.

mysql amazon-ec2 bitnami mysql-python amazon-web-services

9
推荐指数
1
解决办法
4万
查看次数

如何使用Facebook帐户登录?

我已通过此链接并尝试了代码.

我正在做同样的事情,但Facebook没有回应.没有弹出窗口(未阻止).我的代码如下:

<div id="fb-root"></div>
<script>


// Additional JS functions here


window.fbAsyncInit = function() {


FB.init({

      appId      : 'myappid', // App ID
      channelUrl : '//myurl/channel.html', // Channel File
      status     : true, // check login status
      cookie     : true, // enable cookies to allow the server to access the session
      xfbml      : true  // parse XFBML
    });


FB.getLoginStatus(function(response) {
alert("Response");
alert("getloginstatus");
    if (response.status === 'connected') {
        // connected
    } else if (response.status === 'not_authorized') {
        // not_authorized
        login();
    } else …
Run Code Online (Sandbox Code Playgroud)

javascript facebook facebook-javascript-sdk facebook-login

5
推荐指数
1
解决办法
3万
查看次数

Android:Epub文件没有在模拟器/ android设备中显示图像

我使用http://www.siegmann.nl/epublib来读取epub文件.我的代码如下所述.

try {
    book = epubReader.readEpub(new FileInputStream("/sdcard/EpubTesting.epub"));

        Resource res;
        Spine contents = book.getSpine();

        List<SpineReference> spinelist  =  contents.getSpineReferences();
        StringBuilder string = new StringBuilder();
        String line = null;
        int count = spinelist.size();


         for (int i=0;i<count;i++){
            res = contents.getResource(i);
            try {
            InputStream is = res.getInputStream();
            BufferedReader reader = new BufferedReader(new InputStreamReader(is));

            try {
                while ((line = reader.readLine()) != null) {
                      linez = (string.append(line+"\n")).toString();
                }

            } catch (IOException e) {e.printStackTrace();}
        } catch (IOException e) {
            e.printStackTrace();
        }
         }


         System.out.println(linez);
         s1.loadDataWithBaseURL("/sdcard/",linez, "text/html", "UTF-8",null); …
Run Code Online (Sandbox Code Playgroud)

java android epub android-emulator android-layout

4
推荐指数
1
解决办法
2830
查看次数

Android从Facebook个人资料中获取生日日期

我想得到我朋友名单中的所有生日日期.我已经试了好几天了.我的代码如下.

Facebook facebook = new Facebook(<MY_FACEBOOK_ID>);

@Override
public void onCreate(Bundle savedInstanceState)
{
    super.onCreate(savedInstanceState);

    mContext = this;
    setContentView(R.layout.main);

    showNotification();

  final String[] PERMISSIONS = new String[] {"user_location", "user_birthday"};        


    facebook.authorize(this, PERMISSIONS, new DialogListener() {
        @Override
        public void onComplete(Bundle values) {}


        @Override
        public void onCancel() {}

        @Override
        public void onFacebookError(FacebookError e) {
            // TODO Auto-generated method stub

        }

        @Override
        public void onError(DialogError e) {
            // TODO Auto-generated method stub

        }
    });

    try {

          String token = facebook.getAccessToken();

          Bundle bundle = new Bundle();
          bundle.putString("fields", "id,name"); …
Run Code Online (Sandbox Code Playgroud)

java android facebook facebook-graph-api

2
推荐指数
1
解决办法
1万
查看次数

如何在ec2 bitnami上修复(2002,"无法通过socket连接到本地MySQL服务器'/tmp/mysql.sock'(2)")?

我在AWS上使用python django开发ec2 bitnami.我在(2002, "Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)")从mysql数据库中获取对象时遇到了.

我已经经历了这么多论坛,但我还没有得到它究竟是什么以及为什么会出现这个问题.请告诉我它是什么以及如何在ec2 bitnami上为python django mysql修复它.

提前致谢.

mysql django amazon-ec2 bitnami amazon-web-services

2
推荐指数
1
解决办法
5883
查看次数

如何将网页干净地打印到点阵打印机?

我有一台Epson LX 300 点阵打印机

我正在使用 PHP 创建 HTML 收据,并使用 Javascriptwindow.print()来要求浏览器打印网页。不幸的是,打印机无法处理格式化的文本。字体大小不正确,区域重叠等。

打印在记事本和写字板中生成的正常文本不会导致任何问题。

我能做些什么来解决这个问题?

html php printing dot-matrix

2
推荐指数
1
解决办法
7926
查看次数