wget http://dstat.sourcearchive.com/downloads/0.7.0/dstat_0.7.0.orig.tar.gz tar -xvzf dstat_0.7.0.orig.tar.gz cd dstat-0.7.0.orig/ #使用以下方式即可使用dstat ./dstat -V
在日常运维工作中,常常遇到需要安装一些依赖的库文件。在实际工作中,一次在Linux中安装SQL Server ODBC驱动时,遇到一个依赖的库文件需要安装(libcrypto.so.6)
可是使用yum provides命令查询libcrypto.so.6文件包含在哪个软件包中。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
[root@manage final]# yum provides libcrypto.so.6 已加载插件:dellsysid, fastestmirror, refresh-packagekit, security Repository base is listed more than once in the configuration Repository updates is listed more than once in the configuration Repository extras is listed more than once in the configuration Repository centosplus is listed more than once in the configuration Repository contrib is listed more than once in the configuration Loading mirror speeds from cached hostfile * base: mirrors.btte.net * epel: mirrors.opencas.cn * extras: mirrors.btte.net * rpmforge: ftp.riken.jp * updates: mirrors.yun-idc.com openssl098e-0.9.8e-18.el6_5.2.i686 : A compatibility version of a general cryptography and TLS library Repo : base 匹配来自于: Other : libcrypto.so.6
mysql -u root mysql> use mysql; mysql> UPDATE user SET Password = PASSWORD('newpass') WHERE user = 'root'; mysql> FLUSH PRIVILEGES;
在丢失root密码的时候,可以这样
1 2 3 4
mysqld_safe --skip-grant-tables& mysql -u root mysql mysql> UPDATE user SET password=PASSWORD("new password") WHERE user='root'; mysql> FLUSH PRIVILEGES;
mkdir -p /FileCloud/installed cd /FileCloud/installed wget http://download-cn.seafile.com/seafile-server_4.4.1_x86-64.tar.gz tar -xvzf seafile-server_4.4.1_x86-64.tar.gz
What is the name of the server? It will be displayed on the client. 3 - 15 letters or digits [ server name ] xxFileCloud
What is the ip or domain of the server? For example: www.mycompany.com, 192.168.1.101 [ This server's ip or domain ] 192.168.3.131 Where do you want to put your seafile data? Please use a volume with enough free space [ default "/FileCloud/installed/seafile-data" ] Enter Which port do you want to use for the seafile fileserver? [ default "8082" ] Enter ------------------------------------------------------------------ Please choose a way to initialize seafile databases: ------------------------------------------------------------------ [1] Create new ccnet/seafile/seahub databases [2] Use existing ccnet/seafile/seahub databases [ 1 or 2 ] 1 What is the host of mysql server? [ default "localhost" ] Enter What is the port of mysql server? [ default "3306" ] Enter What is the password of the mysql root user? [ root password ] "root's password of mysql" verifying password of user root ... done Enter the name for mysql user of seafile. It would be created if not exists. [ default "root" ] `Enter` Enter the database name for ccnet-server: [ default "ccnet-db" ] `Enter` Enter the database name for seafile-server: [ default "seafile-db" ] `Enter` Enter the database name for seahub: [ default "seahub-db" ] `Enter` --------------------------------- This is your configuration --------------------------------- server name: xxFileCloud server ip/domain: 192.168.3.131 seafile data dir: /FileCloud/installed/seafile-data fileserver port: 8082 database: create new ccnet database: ccnet-db seafile database: seafile-db seahub database: seahub-db database user: root ------------------------------------------------------------------ Press ENTER to continue, or Ctrl-C to abort ------------------------------------------------------------------ Generating ccnet configuration ... done Successly create configuration dir /kfc/installed/ccnet. Generating seafile configuration ... Done. done Generating seahub configuration ... ------------------------------------------------------------- Now creating seahub database tables ... ------------------------------------------------------------- creating seafile-server-latest symbolic link ... done ------------------------------------------------------------------ Your seafile server configuration has been finished successfully. ------------------------------------------------------------------- run seafile server: ./seafile.sh { start | stop | restart } run seahub server: ./seahub.sh { start <port> | stop | restart <port> } ------------------------------------------------------------------- If you are behind a firewall, remember to allow input/output of these tcp ports: -------------------------------------------------------------------- port of seafile fileserver: 8082 port of seahub: 8000 When problems occur, Refer to https://github.com/haiwen/seafile/wiki for information.
LC_ALL is not setin ENV, set to en_US.UTF-8 Starting seahub at port 80 ...
---------------------------------------- It's the first time you start the seafile server. Now let's create the admin account ----------------------------------------
What is the email for the admin account? [ admin email ] polarsnow@20150509.cn #这里的账号最好填写能收到邮件的邮箱用于忘记密码后找回密码使用
What is the password for the admin account? #这里的密码是自定义的Seafile的密码 [ admin password ]
Enter the password again: [ admin password again ]
---------------------------------------- Successfully created seafile admin ----------------------------------------